Fetching Enterprise Objects
|
objectsForEntityNamed:
|
Fetches and returns the enterprise objects associated with the specified entity.
|
objectsOfClass:
|
Fetches and returns the enterprise objects associated with the specified class. Raises or throws an exception if more than one entity for the class exists.
|
objectsWithFetchSpecificationNamed:entityNamed:bindings: (Objective-C)
objectsWithFetchSpecificationAndBindings (Java)
|
Fetches and returns the enterprise objects retrieved with the specified fetch specification and bindings. (For more information on bindings, see "Binding to Complex Qualifiers.")
|
objectWithFetchSpecificationNamed:entityNamed:bindings: (Objective-C)
objectWithFetchSpecificationAndBindings (Java)
|
Same as the corresponding objects... method (immediately above), except this method raises or throws an exception unless exactly one object is retrieved.
|
objectsForEntityNamed:qualifierFormat: (Objective-C)
objectsWithQualifierFormat (Java)
|
Creates a qualifier with the provided format string and returns matching enterprise objects.
|
objectForEntityNamed:qualifierFormat: (Objective-C)
objectWithQualifierFormat (Java)
|
Same as the corresponding objects... method (immediately above), except this method raises or throws an exception unless exactly one object is retrieved.
|
objectsMatchingValue:forKey:entityNamed: (Objective-C)
objectsMatchingKeyAndValue (Java)
|
Creates an EOKeyValueQualifier with the specified key and value and returns matching enterprise objects.
|
objectMatchingValue:forKey:entityNamed: (Objective-C)
objectMatchingKeyAndValue (Java)
|
Same as the corresponding objects... method (immediately above), except this method raises or throws an exception unless exactly one object is retrieved.
|
objectsMatchingValues:entityNamed: (Objective-C)
objectsMatchingValues (Java)
|
Creates EOKeyValueQualifiers for each key-value pair in the specified dictionary, ANDs these qualifiers together into an EOAndQualifier, and returns matching enterprise objects.
|
objectMatchingValues:entityNamed: (Objective-C)
objectMatchingValues (Java)
|
Same as the corresponding objects... method (immediately above), except this method raises or throws an exception unless exactly one object is retrieved.
|
objectWithPrimaryKeyValue:entityNamed: (Objective-C)
objectWithPrimaryKeyValue (Java)
|
Fetches and returns the enterprise object identified by the specified primary key value. For use only with enterprise objects that have non-compound primary keys. Raises or throws an exception unless exactly one object is retrieved.
|
objectWithPrimaryKey:entityNamed: (Objective-C)
objectWithPrimaryKey (Java)
|
Fetches and returns the enterprise object identified by the specified primary key dictionary. Raises or throws an exception unless exactly one object is retrieved.
|